x = 'goals'
y = 'shots'
graph1 = figure(title="NHL Data", x_axis_label=x, y_axis_label=y)
months = nhl_player_stats_team_df['birth_month'].unique()
#graph1.circle(nhl_player_stats_team_df[x], nhl_player_stats_team_df[y], legend_label='test')
for month in months:
    month_df = nhl_player_stats_team_df[nhl_player_stats_team_df['birth_month'] == month]
    graph1.circle(month_df[x], month_df[y], legend_label=month)
graph1.legend.click_policy="hide"
show(graph1)
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
~\AppData\Local\Temp/ipykernel_12200/955611271.py in <module>
----> 1 show(graph1)

NameError: name 'show' is not defined